projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ffd5e3
)
(print_partial_compiled_pattern): Add missing 'break'
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 28 May 2004 22:28:09 +0000
(22:28 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 28 May 2004 22:28:09 +0000
(22:28 +0000)
after 'case wordend'. For symbeg and symend, print to stderr,
like the other cases.
src/regex.c
patch
|
blob
|
history
diff --git
a/src/regex.c
b/src/regex.c
index 0c1343bf58431143d8f1e3e8df7a1abaa794d858..db69275c31265eb7cde2f962b23681de929ecbe3 100644
(file)
--- a/
src/regex.c
+++ b/
src/regex.c
@@
-1096,13
+1096,14
@@
print_partial_compiled_pattern (start, end)
case wordend:
fprintf (stderr, "/wordend");
+ break;
case symbeg:
-
printf (
"/symbeg");
+
fprintf (stderr,
"/symbeg");
break;
case symend:
-
printf (
"/symend");
+
fprintf (stderr,
"/symend");
break;
case syntaxspec: